home *** CD-ROM | disk | FTP | other *** search
-
- //------------------------------------------------------------------->
- //
- // test-3.pov
- //
- // "Easy POV Oven"
- //
- // Written By: Paul T. Dawson
- // ptdawson@voicenet.com
- // http://www.voicenet.com/~ptdawson
- //
- // All code and techniques are PUBLIC DOMAIN - have fun with it!
- //
- //------------------------------------------------------------------->
- //
- // This file is for testing the "Table" object only.
- //
- //------------------------------------------------------------------->
- //
- // All of the usual initializing.
-
- #include "colors.inc"
- #include "textures.inc"
- #include "metals.inc"
- #include "skies.inc"
- #include "woods.inc"
- #default { finish { Shiny } }
- background { Gray50 }
-
- camera { location < 5*12, 4.5*12, -6*12 >
- look_at < 0, 1.5*12, 0 > }
-
- light_source { < 6*12, 10*12, -10*12 > color rgb < 2, 2, 2 > }
-
- //------------------------------------------------------------------->
- //
- // Include the file and show the object.
-
- #include "table.inc"
- object { Table }
-
- //------------------------------------------------------------------->
- //
- // End of this file.
-
-